home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / ctutor2.zip / INTARRAY.C < prev    next >
C/C++ Source or Header  |  1987-07-04  |  310b  |  14 lines

  1.                                           /* Chapter 7 - Program 3 */
  2. main()
  3. {
  4. int values[12];
  5. int index;
  6.  
  7.    for (index = 0;index < 12;index++)
  8.       values[index] = 2 * (index + 4);
  9.  
  10.    for (index = 0;index < 12;index++)
  11.       printf("The value at index = %2d is %3d\n",index,values[index]);
  12.  
  13. }
  14.